home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / stdio / perror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  144 b   |  10 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3.  
  4. extern char *_errors[];
  5.  
  6. void perror(const char *s)
  7. {
  8.     fprintf(stderr,"%s: %s\n",s,_errors[errno]);
  9. }
  10.